A C D E F G I J L M N P R S T V W Y
All Classes All Packages
All Classes All Packages
All Classes All Packages
A
- addDay(int) - Method in class MusicLandscape.Date
- addMonth(int) - Method in class MusicLandscape.Date
- addTrack(Track) - Method in class MusicLandscape.entities.Album
-
Adds a track to the list of tracks.
Tracks are added to the end of the list. - addTrack(Track) - Method in class MusicLandscape.entities.Concert
-
adds a track to the set list
- addYear(int) - Method in class MusicLandscape.Date
- Album - Class in MusicLandscape.entities
-
This class represents an album as a concrete release of a specific artist.
An album has a list of tracks, which, in this class, is implemented as a (singly) linked lists of tracks. - Album() - Constructor for class MusicLandscape.entities.Album
-
Creates a default Album.
A default album is a default release with an empty track list. - Album(String, Artist, int) - Constructor for class MusicLandscape.entities.Album
-
Create an album with a specific title of a specific artist in a specific year.
- Album(Album) - Constructor for class MusicLandscape.entities.Album
-
Creates a copy of an album.
All release parts of this album are copied as described in the release copy constructor. - Album.TrackListItem - Class in MusicLandscape.entities
-
A single item of a linked list of tracks.
A single list item consists of the primary data, in our case a track, and a reference to its successor, which is another list item. - artist - Variable in class MusicLandscape.entities.Event
-
the artist who appeared at this event the artist of an event cannot be null
- artist - Variable in class MusicLandscape.entities.Release
-
The artist that released this release.
A null artist represents an unknown artist. - Artist - Class in MusicLandscape.entities
-
This class represents an artist of performing arts, like a band.
- Artist() - Constructor for class MusicLandscape.entities.Artist
-
creates a default artist
- Artist(String) - Constructor for class MusicLandscape.entities.Artist
-
creates an artist with a certain name
- Artist(Artist) - Constructor for class MusicLandscape.entities.Artist
-
creates a copy of an artist
- attendees - Variable in class MusicLandscape.entities.Event
-
the number of attendees of this event.
All Classes All Packages